home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Gamer (Italian) 30
/
PC Gamer IT CD 30 1-2.iso
/
MOTS
/
GAMEDATA
/
RESOURCE
/
JKMRES.GOO
/
cog_pow_carbgun_m.cog
< prev
next >
Wrap
Text File
|
1998-02-25
|
4KB
|
137 lines
# Jedi Knight Mission Cog Script
#
# POW_CARBGUN_M.COG
#
# POWERUP Script - Carbonite Gun pickup
#
# [YB & CYW] + [RF]
#
# (C) 1997 LucasArts Entertainment Co. All Rights Reserved
symbols
thing powerup local
thing player local
int bin=20 local
int ammobin=90 local
sound pickupsnd=thrmlpu2.wav local
sound respawnsnd=Activate01.wav local
flex amount local
int bin_contents=0 local
int autopickup=0 local
int autoselect_weapon=-1 local
message touched
message taken
message respawn
end
# ========================================================================================
code
touched:
player = GetSourceRef();
if (GetThingType(player) == 10) // Can only be taken by players.
{
if(IsMulti() || (GetInv(player, GetWeaponBin(bin)) == 0) || (GetInv(player, ammobin) < GetInvMax(player, ammobin)))
{
TakeItem(GetSenderRef(), -1);
call taken;
}
}
Return;
# ........................................................................................
taken:
player = GetSourceRef();
powerup = GetSenderRef();
// Do effects.
PlaySoundLocal(pickupsnd, 1, 0, 0);
AddDynamicTint(player, 0.0, 0.0, 0.2);
if(GetInv(player, GetWeaponBin(bin)) == 0)
{
// Pickup gun and ammo.
jkPrintUNIString(player, GetWeaponBin(bin));
ChangeInv(player, GetWeaponBin(bin), 1.0);
// store the old bin contents
bin_contents = GetInv(player, ammobin);
ChangeInv(player, ammobin, 5.0);
// Check for Auto Pickup
autopickup = GetAutoPickup();
if(autopickup & 1)
{
if(!((autopickup & 4) && (GetWeaponPriority(player, GetWeaponBin(GetCurWeapon(player))) >= GetWeaponPriority(player, GetWeaponBin(bin)))))
{
if(!((autopickup & 8) && (GetWeaponBin(GetCurWeapon(player)) == jkGetMultiParam(1))))
{
SelectWeapon(player, GetWeaponBin(bin));
Return;
}
}
}
// Check for Auto Reload
if(GetAutoReload() & 1)
{
if(!bin_contents)
{
if(!((GetAutoReload() & 2) && (GetWeaponBin(GetCurWeapon(player)) == jkGetMultiParam(1))))
{
// Try to autoselect and see if the best weapon is the carbo gun
autoselect_weapon = AutoSelectWeapon(player, 2);
if (autoselect_weapon == bin)
SelectWeapon(player, GetWeaponBin(bin));
}
}
}
}
else
if(GetInv(player, ammobin) < GetInvMax(player, ammobin))
{
// Pickup ammo only.
// Print("Energy Cells");
jkPrintUNIString(player, ammobin);
// store the old bin contents
bin_contents = GetInv(player, ammobin);
ChangeInv(player, ammobin, 5.0);
// Check for Auto Reload
if(GetAutoReload() & 1)
{
if(!bin_contents)
{
if(!((GetAutoReload() & 2) && (GetWeaponBin(GetCurWeapon(player)) == jkGetMultiParam(1))))
{
// Try to autoselect and see if the best weapon is an carbonite weapon
autoselect_weapon = AutoSelectWeapon(player, 2);
if (autoselect_weapon == bin)
SelectWeapon(player, GetWeaponBin(bin));
}
}
}
}
Return;
# ........................................................................................
respawn:
PlaySoundThingLocal(respawnsnd, GetSenderRef(), 0.6, 5.0, 10.0, 0);
Return;
end